removed excess files
[EroBeats.git] / Djinn and Tonic - Erobeats / LevelTemplate.h
blob8cfc6fecd9493875ef7aa430555507abc591a9e4
1 #pragma once
3 #include "ScreenTemplate.h"
5 #include "RhythmIO.h"
6 #include "TempoTools.h"
8 #include <chrono>
9 class LevelTemplate : public ScreenTemplate
11 public:
12 LevelTemplate();
13 ~LevelTemplate();
15 void processInput();
17 void initializeBeats(std::string levelPath);
18 void startMusic(int track, int fadeInDuration);
20 double scoreBarPercent(int currScore, int maxScore);
22 RhythmIO* rio;
23 TempoTools* tTools;
25 short playSound[9];
26 short playCue[9];
28 bool heldL;
29 bool heldR;
30 bool leftMouseClicked;
31 bool rightMouseClicked;
32 bool playedOnce1;
33 bool playedOnce2;
34 bool playedOnce2_1;
35 bool playedOnce3;
36 bool playedOnce4;